【例子介绍】C#实现supermap二次开发属性数据输入
本程序实现supermap二次开发属性数据的输入,采用C#开发。
【相关图片】
【源码结构】
文件清单
└── Export_Data
├── Backup
│ ├── Export_Data
│ │ ├── Export_Data.csproj
│ │ ├── Export_Raster.cs
│ │ ├── Export_Raster.Designer.cs
│ │ ├── Export_Raster.resx
│ │ ├── Export_Vector.cs
│ │ ├── Export_Vector.Designer.cs
│ │ ├── Export_Vector.resx
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Export_Data.Designer.cs
│ │ ├── Export_Data.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Export_Data.sln
│ └── Export_Data.suo
├── Export_Data
│ ├── bin
│ │ ├── Debug
│ │ └── Release
│ │ ├── AxInterop.SuperMapLib.dll
│ │ ├── AxInterop.SuperWkspManagerLib.dll
│ │ ├── Export_Data.exe
│ │ ├── Export_Data.vshost.exe
│ │ ├── Export_Data.vshost.exe.manifest
│ │ ├── Interop.SuperMapLib.dll
│ │ └── Interop.SuperWkspManagerLib.dll
│ ├── Export_Data.csproj
│ ├── Export_Raster.cs
│ ├── Export_Raster.Designer.cs
│ ├── Export_Raster.resx
│ ├── Export_Vector.cs
│ ├── Export_Vector.Designer.cs
│ ├── Export_Vector.resx
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── obj
│ │ ├── Debug
│ │ │ └── TempPE
│ │ └── Release
│ │ ├── Export_Data.csproj.FileListAbsolute.txt
│ │ ├── Export_Data.csproj.GenerateResource.Cache
│ │ ├── Export_Data.csproj.ResolveComReference.cache
│ │ ├── Export_Data.Export_Raster.resources
│ │ ├── Export_Data.Export_Vector.resources
│ │ ├── Export_Data.MainForm.resources
│ │ ├── Export_Data.Properties.Export_Data.resources
│ │ └── TempPE
│ │ └── Properties.Export_Data.Designer.cs.dll
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Export_Data.Designer.cs
│ ├── Export_Data.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Export_Data.sln
├── Export_Data.suo
├── UpgradeLog.XML
└── _UpgradeReport_Files
├── UpgradeReport.css
├── UpgradeReport_Minus.gif
├── UpgradeReport_Plus.gif
└── UpgradeReport.xslt
15 directories, 56 files
评论